/* * Sun Public License Notice * * The contents of this file are subject to the Sun Public License * Version 1.0 (the "License"). You may not use this file except in * compliance with the License. A copy of the License is available at * http://www.sun.com/ * * The Original Code is Forte for Java, Community Edition. The Initial * Developer of the Original Code is Sun Microsystems, Inc. Portions * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved. */ package org.openide.util.datatransfer; import java.awt.datatransfer.*; import java.io.IOException; /** Interface for transferring multiple objects at once. * * @author Jaroslav Tulach * @version 0.12 Dec 16, 1997 */ public interface MultiTransferObject { /** Get the number of transferred elements. * @return the count */ public int getCount (); /** Get the transferable at some index. * @param index the index * @return the transferable */ public Transferable getTransferableAt(int index); /** Test whether a given data flavor is supported by the item at <code>index</code>. * * @param index the index * @param flavor the flavor to test * @return <CODE>true</CODE> if the flavor is supported */ public boolean isDataFlavorSupported(int index, DataFlavor flavor); /** Test whether each transferred item supports at least one of these * flavors. Different items may support different flavors, however. * @param array array of flavors * @return <code>true</code> if all items support one or more flavors */ public boolean areDataFlavorsSupported (DataFlavor[] array); /** Get list of all supported flavors for the item at an index. * @param i the index * @return array of supported flavors */ public DataFlavor[] getTransferDataFlavors (int i); /** Get transfer data for the item at some index. * @param indx the index * @param flavor the flavor desired * @return transfer data for item at that index * @throws IOException if there is an I/O problem * @throws UnsupportedFlavorException if that flavor is not supported */ public Object getTransferData(int indx, DataFlavor flavor) throws UnsupportedFlavorException, IOException; } /* * Log * 4 Gandalf 1.3 10/22/99 Ian Formanek NO SEMANTIC CHANGE - Sun * Microsystems Copyright in File Comment * 3 Gandalf 1.2 6/8/99 Ian Formanek ---- Package Change To * org.openide ---- * 2 Gandalf 1.1 3/10/99 Jesse Glick [JavaDoc] * 1 Gandalf 1.0 1/5/99 Ian Formanek * $ */